home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 163_01 / isdigit.c < prev    next >
Text File  |  1988-01-30  |  384b  |  8 lines

  1. /*
  2. ** isdigit -- true if argument is valid ASCII digit
  3. */
  4. isdigit(c) char c; {
  5.   if(c >= '0' && c <= '9') return 1;
  6.   else return 0;
  7.   }
  8.